home *** CD-ROM | disk | FTP | other *** search
- /* Header for Shelly - the famous ShellShapeGenerator */
-
- #define POV 1
- #define RPL 2
-
- struct punkt
- {
- struct punkt *next;
- double x,y,z;
- };
-
-
- struct ShellyArguments
- {
- double alpha,beta,phi,my,omega,omin,omax,smin,smax,A,a,b,P,W1,W2,N,L;
- double od, sd;
- int output;
- };
-
- #define pi 3.141592654
- #define laenge 255
-